home *** CD-ROM | disk | FTP | other *** search
/ How To Lose A Guy In 10 Days Press Kit / How to Lose a Guy in 10 Days Press Kit.iso / pc / Program.dxr / New Save Image Cast_142_IM06_SV_Thumb.ls < prev    next >
Encoding:
Text File  |  2003-01-17  |  295 b   |  26 lines

  1. global gSEL
  2.  
  3. on mouseWithin me
  4.   cursor(280)
  5. end
  6.  
  7. on mouseLeave me
  8.   cursor(0)
  9. end
  10.  
  11. on mouseDown me
  12.   global gIM06
  13.   if gIM06 = 1 then
  14.     gIM06 = 0
  15.     gSEL.deleteOne("F")
  16.   else
  17.     gIM06 = 1
  18.     gSEL.add("F")
  19.   end if
  20. end
  21.  
  22. on mouseUp me
  23.   sound(3).play(member("Shutter"))
  24.   updateStage()
  25. end
  26.